qr_factors Derived Type

type, public :: qr_factors

A container for the results of a QR factorization of an M-by-N matrix.


Components

Type Visibility Attributes Name Initial
real(kind=real64), public, allocatable, dimension(:,:) :: P

The N-by-N pivot tracking matrix.

real(kind=real64), public, allocatable, dimension(:,:) :: Q

The M-by-M orthogonal matrix, .

real(kind=real64), public, allocatable, dimension(:,:) :: R

The M-by-N upper trapezoidal matrix, .